home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 23 / Amiga Format AFCD23 (Feb 1998, Issue 107).iso / +look_here_1st!+ / reader_requests / voiceshell / source / include / voice.i
Text File  |  1997-12-05  |  1KB  |  77 lines

  1.     IFND    LIBRARIES_VOICE_I
  2. LIBRARIES_VOICE_I SET    1
  3. **
  4. **    $Filename: libraries/voice.i $
  5. **    $Release: 1.00 $
  6. **    $Revision: 1.1 $
  7. **    $Date: 93/06/18 $
  8. **
  9. **    Voice.library definitions
  10. **
  11. **    Written originally by Tomi Blinnikka
  12. **
  13.  
  14. VOICEVERSION    EQU    8
  15.  
  16. **    Library offsets
  17.  
  18. _LVOLearn        EQU    -30
  19. _LVORecognize        EQU    -36
  20. _LVOAddVoiceTask    EQU    -42
  21. _LVORemVoiceTask    EQU    -48
  22. _LVOGainUp        EQU    -54
  23. _LVOGainDown        EQU    -60
  24. _LVORecDataAddress    EQU    -66
  25. _LVORecMapAddress    EQU    -72
  26. _LVOWordScore        EQU    -78
  27. _LVOPickSampler        EQU    -84
  28. _LVOSetVoicePri        EQU    -90
  29. _LVOPickTimer        EQU    -96
  30. _LVOWhatGain        EQU    -102
  31. _LVOPickChannel        EQU    -108
  32. _LVOPickInput        EQU    -114
  33.  
  34.  
  35. **    Macro for library name
  36.  
  37. VoiceName    MACRO
  38.         dc.b    'voice.library',0
  39.         ds.w    0
  40.         ENDM
  41.  
  42.  
  43. **    Timer to use with VoiceTask
  44.  
  45. TIMER_B        EQU    0
  46. TIMER_A        EQU    1
  47.  
  48.  
  49. **    The samplers supported by voice.library
  50.  
  51. SAMP_PERFSND    EQU    0
  52. SAMP_SNDMSTR    EQU    1
  53. SAMP_GENERIC    EQU    2
  54. SAMP_DSS8    EQU    3
  55.  
  56.  
  57. **    Frequency analysis resolution
  58.  
  59. RES_HI        EQU    0
  60. RES_LO        EQU    1
  61.  
  62. **    Which channel to use. FOR: PerfectSound, SoundMaster and DSS 8
  63. **    only
  64.  
  65. CHANNEL_RIGHT    EQU    0
  66. CHANNEL_LEFT    EQU    1
  67.  
  68.  
  69. **    Input level (microphone or line) to use. FOR: PerfectSound,
  70. **    SoundMaster and DSS 8
  71.  
  72. INPUT_MIC    EQU    0
  73. INPUT_LINE    EQU    1
  74.  
  75.  
  76.     ENDC    ; LIBRARIES_VOICE_I
  77.